:root {
  --bg-color: #dbdfe6; /* light gray */
  --bg-dark-color: #001d3d; /* dark blue */
  --bg-dark-color: #000e1e; /* dark blue */
  
  --text-color: #0e0e0e; /* black */
  --primary-color: #a97b54; /* gold */
  --white-color: #fff; /* white */

  --secondary: #001d3d;
  --line: #d4c7a6;
  --isabelline: #f7f4ee;
  --gray: #827f7f;
}

html {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:link,
a:visited,
a:hover,
a:active {
  /*color: var(--text-color);*/
  color: inherit;
}

p {
  font-size: 1.25rem;
  line-height: 180%;
  margin-bottom: 20px;
  text-align: justify;
}


ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li {
  list-style: disc;
  list-style-type: "\2014\00A0";
  font-size: 1.25rem;
  line-height: 180%;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  p {
    font-size: 1rem;
  }
  ul li {
    font-size: 1rem;
  }
}

.container {
  z-index: 5;
  width: 90vw;
  max-width: 81.25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.bg-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-wrap {
  grid-column-gap: 16px;
  display: flex;
}
.btn {
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  color: var(--white);
  white-space: nowrap;
  background-color: var(--primary-color);
  justify-content: center;
  width: auto;
  min-width: 170px;
  padding: 14px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  display: flex;
  transition: background-color 0.4s;
}
.btn-transparent {
  background-color: transparent;
}
.btn:hover {
  background-color: var(--bg-dark-color);
}

.no-margin {
  margin: 0!important;
}

/**
 * 
 * Section split
 * 
 */

.section-split .split-cont {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}
.section-split .left-side {
  flex: 1;
}
.section-split .right-side {
  flex: 1;
}
.section-split .split-cont.split-2-1 .left-side {
  flex: 2;
}
.section-split .split-cont.split-1-2 .right-side {
  flex: 2;
}

@media screen and (max-width: 720px) {
  .section-split .split-cont {
    flex-direction: column-reverse;
  }
}


/**
 * 
 * Page Header
 * 
 */

.page-header {
  background-color: var(--bg-dark-color);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

/* Fullscreen background */

.page-header .bg-full {
  transition: opacity 0.4s;
}
.page-header video.bg-full {
  background-image:url('../../public/video/bg-video-alt.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: opacity(0.3) contrast(1.4);
  opacity: 0;
}
.page-header img.bg-full {
  filter: opacity(0.25);
}
.page-header.show-video video.bg-full {
  opacity: 1;
}
.page-header.show-video img.bg-full {
  opacity: 0;
}

/* Navigation */

.page-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--bg-dark-color);
  color: var(--white-color);
  height: 80px;
  z-index: 1000;
  font-size: 1.125rem;
}
.page-nav .container {
  display: flex;
  height: 100%;
}
.page-nav .container > div {
  
}
.nav-left {
  width: 100px;
}
.nav-center {
  flex: 1;
  gap: 40px;
}
.nav-right {
  width: 100px;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
}

/* Mobile */

.btn-mobile {
  display: none;
  top: 30px;
  left: calc(50% - 12px);

  border-radius: 50%;
  position: absolute;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;

}
.btn-moile {
  bottom: 25px;
  cursor: pointer;
  fill: none;
  height: 24px;
  /* left: 35px; */
  padding: 5px;
  -webkit-tap-highlight-color: transparent;
  width: 24px;
}
.btn-mobile circle {
  fill: #282828;
}
.btn-mobile path {
  stroke: #fff;
  stroke-width: 2;
  transition: stroke 300ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50%;
}
.button-menu1:active .bg {
  fill: #555;
}


.mobile-active path {
  stroke: #ce5050;
}
.mobile-active path:nth-child(2) {
  transform: translateX(-2.5px) translateY(3px) rotate(45deg);
}
.mobile-active path:nth-child(3) {
  transform: scale(0);
}
.mobile-active path:nth-child(4) {
  transform: translateX(-2.5px) translateY(-3px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  background-color: var(--bg-dark-color);
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  flex-direction: column;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  color: var(--white-color);
}
.nav-mobile a {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  padding: 12px;
}
.nav-mobile a:first-child {
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-mobile a:first-child img {
  width: 40px;
}
.nav-mobile a:last-child {
  padding-top: 32px;
  padding-bottom: 16px;
}
.nav-mobile a:active::after {
  background-color: #000;
  content: " ";
  opacity: 0.25;
  height: 100%;
  position: absolute;
  width: 100%;
}
.food {
  height: 40px;
  width: 40px;
}
.mobile-active .nav-mobile {
  transform: translateY(80px);
}

@media screen and (max-width: 840px) {
  .nav-center a, a.logo, a.fb {
    display: none;
  }
  .btn-mobile {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }
}

/* Header text */

.header-text {
  color: white;
  font-family: Instrument Serif, sans-serif;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header .btn-wrap {
  margin-top: 40px;
  margin-bottom: 16px;
}


/*
h1 {
  font-size: 88px;
  font-size: clamp(1rem, 2.887097rem + 11.6129vw, 5.5rem);
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 20px;
}
*/
.header-text h1,
.header-text h2,
.header-text h3 {
  line-height: 120%;
  font-weight: 400;
}
.header-text h1 {
  font-size: clamp(1rem, -0.92857rem + 8.57vw, 5.5rem); /* 1rem -> 5.5rem ... 360px -> 982px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.header-text h2 {
  font-size: clamp(0.875rem, -1.04rem + 9.58vw, 4.5rem); /* 0.875rem -> 4.5rem ... 320px -> 925px */
}
.header-text h3 {
  font-size: clamp(0.875rem, -1.04rem + 9.58vw, 4.5rem); /* 0.875rem -> 4.5rem ... 320px -> 925px */
  text-transform: uppercase;
  color: var(--primary-color);
}







section {
  padding: 80px 0;
}

section header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

section.contact header {
  align-items: flex-start;

}

section h2 {
  color: var(--primary-color);
  text-transform: uppercase;
  padding: 13px;
  border-bottom: 1px solid var(--primary-color);
  font-family: Instrument Serif, sans-serif;
  font-weight: 500;
  font-size: 52px;

}



section.contact header h1 {
  color: var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
}
section header h2,
section header h3 {
  font-family: Instrument Serif, sans-serif;
  font-weight: 500;
  font-size: 52px;
}
section header span {
  color: var(--primary-color);
}



@media screen and (max-width: 1080px) {
  .service-cont {
    flex-direction: column;
  }
  .service-text p {
    font-size: 14px;
  }
img.signature {
  width: 100px;
}

}


ul.services {
  margin-top: 80px;

}

ul.services li .container {
  border-top: 1px solid rgba(22, 22, 22, 0.1);
  padding: 40px;
}
ul.services li:last-child .container {
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);

}

ul.services .item-cont {

}

ul.services li {
  position: relative;
}

ul.services li:hover {
  background-color: var(--white-color);
}

ul.services a {
  display: block;
}

ul.services p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    max-width: 66%;
}

ul.services strong {
font-family: Instrument Serif, sans-serif;
    font-weight: 500;
    font-size: 52px;
}


.dot {
  width: .625rem;
    height: .625rem;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
}


.service-text ul  {
  margin-left: 20px;
  margin-bottom: 20px;
}


.service-text ul li {
  list-style: disc;
  list-style-type: "\2014\00A0";
  font-family: 'Inter', sans-serif; 
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
}


.contact {
  background-color: var(--bg-dark-color);
  color: var(--bg-color);
  padding: 40px 0;
}
.contact .container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.contact .container div {
  flex: 1;
  position: relative;

}
.contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact p {
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
}

.contact img {
object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: opacity(0.5);
}





.contact-map {
  min-height: 250px;
  height: 100%;
}

.gmap {
  min-height: 200px;
}







.nav-services {
  /*
  display: none;
  */
  background-color: var(--bg-dark-color);
  /*
  top: 0;
  */
  z-index: 1000;
  flex-wrap: wrap;
  flex-direction: column;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  /*width: 100%;*/
  color: var(--white-color);

    display: flex;

    justify-content: center;
    gap: 20px;

padding: 20px;
    align-items: anchor-center;
    top: 0;
}

/*
.nav-mobile a {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  padding: 12px;
}
.nav-mobile a:first-child {
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-mobile a:first-child img {
  width: 40px;
}
.nav-mobile a:last-child {
  padding-top: 32px;
  padding-bottom: 16px;
}
.nav-mobile a:active::after {
  background-color: #000;
  content: " ";
  opacity: 0.25;
  height: 100%;
  position: absolute;
  width: 100%;
}
.food {
  height: 40px;
  width: 40px;
}
*/
.services-active .nav-services {
  transform: translateY(80px);
}

@media screen and (max-width: 840px) {
  .switch-services {
    display: none;
  }
  .nav-services {
    display: none;
  }
  /*
  .nav-center a, a.logo, a.fb {
    display: none;
  }
  .btn-mobile {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }
*/
}


